home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
090
/
pctj0287.arc
/
MAKEFILE
< prev
next >
Wrap
Text File
|
1986-12-15
|
466b
|
19 lines
# makefile for time delay and sound routines
# --- timing and sound functions ---
delay.obj: delay.c timer.h
getticks.obj: getticks.c
setfreq.obj: setfreq.c timer.h
sound.obj: sound.c sound.h
sounds.obj: sounds.c
spkr.obj: spkr.c sound.h
tone.obj: tone.c
# --- demonstration programs ---
sounds.exe: sounds.obj sound.obj
link $* sound delay getticks setfreq;
spkr.exe: spkr.obj
link $*;
tone.exe: tone.obj
link $* setfreq;